home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / c / unixSyscall / creat.c < prev    next >
C/C++ Source or Header  |  1988-06-19  |  1KB  |  57 lines

  1. /* 
  2.  * creat.c --
  3.  *
  4.  *    Procedure to map from Unix creat system call to Sprite.
  5.  *
  6.  * Copyright (C) 1986 Regents of the University of California
  7.  * All rights reserved.
  8.  */
  9.  
  10. #ifndef lint
  11. static char rcsid[] = "$Header: creat.c,v 1.1 88/06/19 14:31:13 ouster Exp $ SPRITE (Berkeley)";
  12. #endif not lint
  13.  
  14. #include "sprite.h"
  15. #include "fs.h"
  16.  
  17. #include "compatInt.h"
  18.  
  19.  
  20. /*
  21.  *----------------------------------------------------------------------
  22.  *
  23.  * creat --
  24.  *
  25.  *    Procedure to map from Unix creat system call to Sprite Fs_Open,
  26.  *    with appropriate parameters.
  27.  *
  28.  * Results:
  29.  *    UNIX_ERROR is returned upon error, with the actual error code
  30.  *    stored in errno.  A file descriptor is returned upon success.
  31.  *
  32.  * Side effects:
  33.  *    Creating a file sets up state in the filesystem until the file is
  34.  *    closed.  
  35.  *
  36.  *----------------------------------------------------------------------
  37.  */
  38.  
  39. int
  40. creat(pathName, permissions)
  41.     char *pathName;        /* The name of the file to create */
  42.     int permissions;        /* Permission mask to use on creation */
  43. {
  44.     int streamId;        /* place to hold stream id allocated by
  45.                  * Fs_Open */
  46.     ReturnStatus status;    /* result returned by Fs_Open */
  47.  
  48.     status = Fs_Open(pathName, FS_CREATE|FS_TRUNC|FS_WRITE, permissions,
  49.             &streamId);
  50.     if (status != SUCCESS) {
  51.     errno = Compat_MapCode(status);
  52.     return(UNIX_ERROR);
  53.     } else {
  54.     return(streamId);
  55.     }
  56. }
  57.